/*--------------------listing.item.html------------------*/

.listingItem .imglist .news-cont {
  z-index: 1;
  height: 70px;
  margin-bottom: 53px;
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.06),
    0 8px 16px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  background-color: #fff;
  padding: 19px 18px;
  margin-top: 6px;
  position: relative;
  display: inline-block;
  transition: 0.4s;
}

.listingItem .imglist .news-cont a {
  text-decoration: none;
}

.listingItem .imglist > img {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 34px;
  color: #485cc7;
}

p {
  color: #616364;
  margin-bottom: 32px;
}
.listingItem .imglist h2 {
  font-size: 17px;
  color: #4c4c4c;
  text-align: center;
  line-height: 24px;
}

.listingItem .imglist span.time {
  color: #666;
  display: inline-block;
  padding: 0 0 15px 0;
  line-height: 1.2;
  font-size: 12px;
}

.listingItem .imglist p {
  padding: 0;
  text-align: center;
  line-height: 25px;
  font-size: 10px;
  margin-bottom: 30px;
  height: 41px;
  color: #585858;
  display: none;
}

.listingItem .imglist imginfo {
  border-top: 1px solid #e3e3e3;
  padding: 30px 0;
  margin: 32px 0 0 0;
}

.listingItem .imglist imginfo img {
  display: inline-block;
}

.listingItem .imglist imginfo span {
  display: inline-block;
  margin: 0 0 0 5px;
}

.listingItem .imglist a.btn.btn-primary {
  color: #fff;
}

.listingItem .imglist:hover a.btn.btn-primary {
  background: #286090;
}

.listingItem .dg-imagebox {
}

.listingItem .dg-imagebox .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #0b2e45;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 44%;
  margin: -18px -18px 0 0;
  z-index: 3;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  /* Firefox 4 */
  -webkit-transition: all 200ms ease-in;
  /* Safari and Chrome */
  -o-transition: all 200ms ease-in;
  /* Opera */
  -ms-transition: all 200ms ease-in;
  /* IE9? */
}

.listingItem .dg-imagebox:hover .icon {
  opacity: 1;
  transform: scaleX(1);
  transition: all 200ms ease-in 500ms;
  -moz-transition: all 200ms ease-in 500ms;
  /* Firefox 4 */
  -webkit-transition: all 200ms ease-in 500ms;
  /* Safari and Chrome */
  -o-transition: all 200ms ease-in 500ms;
  /* Opera */
  -ms-transition: all 200ms ease-in 500ms;
  /* IE9? */
}

.listingItem .dg-imagebox .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  opacity: 1;
  z-index: 0;
  margin-top: -3px;
  opacity: 1;
  transition: all 300ms ease-in 500ms;
  -moz-transition: all 300ms ease-in 500ms;
  /* Firefox 4 */
  -webkit-transition: all 300ms ease-in 500ms;
  /* Safari and Chrome */
  -o-transition: all 300ms ease-in 500ms;
  /* Opera */
  -ms-transition: all 300ms ease-in 500ms;
  /* IE9? */
}

.listingItem .dg-imagebox:hover .bg {
  opacity: 0.7;
  top: 0;
  margin-top: 0;
  transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  /* Firefox 4 */
  -webkit-transition: all 300ms ease-in;
  /* Safari and Chrome */
  -o-transition: all 300ms ease-in;
  /* Opera */
  -ms-transition: all 300ms ease-in;
  /* IE9? */
}

.listingItem .dg-imagebox .pic {
  position: relative;
}

.listingItem .dg-imagebox .pic > img {
  width: 100%;
}

.listingItem .dg-imagebox .pic:after,
.listingItem .dg-imagebox .pic:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  bottom: 20px;
  opacity: 0.5;
  z-index: 1;
  transition: all 300ms ease-in 200ms;
  -moz-transition: all 300ms ease-in 200ms;
  /* Firefox 4 */
  -webkit-transition: all 300ms ease-in 200ms;
  /* Safari and Chrome */
  -o-transition: all 300ms ease-in 200ms;
  /* Opera */
  -ms-transition: all 300ms ease-in 200ms;
  /* IE9? */
}

.listingItem .dg-imagebox .pic:after {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}

.listingItem .dg-imagebox .pic:before {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
}

.listingItem .dg-imagebox:hover .pic:after,
.listingItem .dg-imagebox:hover .pic:before {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: all 300ms ease-in 300ms;
  -moz-transition: all 300ms ease-in 300ms;
  /* Firefox 4 */
  -webkit-transition: all 300ms ease-in 300ms;
  /* Safari and Chrome */
  -o-transition: all 300ms ease-in 300ms;
  /* Opera */
  -ms-transition: all 300ms ease-in 300ms;
  /* IE9? */
}

/*------------------view.item.html------------------------*/
.ArticleView {
  margin: 0 0 0 0;
  text-align: right;
}

.ArticleView .news-content .title {
  margin: 0 0 5px 0;
  font-size: 15px;
  text-align: right;
  font-weight: bold;
}

.news-content {
  margin-top: 7%;
}

.ArticleView .news-content .col-md-4.col-sm-4.col-xs-12 {
  padding-left: 0;
}

.ArticleView .section {
  margin: 15px 0;
  background: #fff;
}

.ArticleView .section .headding {
  font-size: 17px;
  color: #444;
  background-color: #f4f4f4;
  padding-right: 15px;
  position: relative;
  padding-block: 14px;
  margin-bottom: 27px;
  font-weight: 600;
}
.ArticleView .section .headding::after {
  background-color: #d4ad68;
  position: absolute;
  content: "";
  height: 51%;
  top: 13px;
  right: 0px;
  display: block;
  width: 4px;
}
.ArticleView .date {
  font-size: 13px;
  color: #888;
  padding: 5px;
  border: solid 1px #f5f5f5;
  height: 37px;
  float: left;
  width: 100%;
  background: #fbfbfb;
}

.ArticleView .datepane {
  float: right;
}

.ArticleView .datepane span {
  margin-left: 5px;
}

.ArticleView .iconpane {
  float: left;
}

.ArticleView .iconpane a {
  background: #c8c8c8;
  color: #fff;
  font-size: 17px;
  width: 25px;
  height: 25px;
  display: inline-block;
  text-align: center;
}

.ArticleView .iconpane a:hover {
  background: #999;
  text-decoration: none;
}

.ArticleView .image img {
  max-width: 100%;
  width: 100%;
}

.ArticleView h1 {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
}

.ArticleView .title em {
  vertical-align: middle;
}

.ArticleView .subtitle {
  font-size: 12px;
  color: #666;
}

.ArticleView .summary {
  font-size: 13px;
  color: #666;
}

.ArticleView .description {
  color: #111;
}

.ArticleView .commentStyle {
  border-bottom: solid 1px #f5f5f5;
  padding-bottom: 20px;
}

.ArticleView .commentStyle .fa {
  font-size: 67px;
  color: #bbb;
}

.ArticleView .commentStyle .datecomment {
  font-size: 11px;
  color: #999;
}

.ArticleView .back {
  text-align: center;
  margin-top: 50px;
}

.ArticleView .back a {
  background-color: #0153a5;
  color: #fff;
  text-align: center;
  font-size: 16px;
  margin-top: 30px;
  padding: 10px 20px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .ArticleView .news-content .col-md-4.col-sm-4.col-xs-12 {
    padding-left: 15px;
  }
}

@media only screen and (max-width: 360px) {
  .ArticleView .iconpane {
    display: none;
  }
}

/*------------comment-------------------*/
.postComment p:nth-child(1) {
  display: inline-block;
  width: 48%;
  margin-left: 1%;
}

.postComment p:nth-child(1) input {
  width: 100%;
  margin-right: 7px;
  border: solid 1px #ddd;
}

.postComment p:nth-child(2) {
  width: 48%;
}

.postComment p:nth-child(2) input {
  width: 100% !important;
}

.postComment p:nth-child(2) {
  display: inline-block;
  margin: 0 8px;
  direction: ltr;
}

.postComment p:nth-child(2) input {
  border: solid 1px #ddd;
  /*! margin:15px;
*/
}

.postComment p:nth-child(3) {
  width: 100%;
}

.postComment p:nth-child(3) input {
  width: 97% !important;
}

.postComment p:nth-child(3) input {
  border: solid 1px #ddd;
  margin-right: 7px;
}

.postComment input[type="text"] {
  height: 46px;
  text-align: right;
  margin-bottom: 5px;
  border-radius: 3px;
  box-shadow: 0 0 3px 1px rgb(238, 238, 238);
  padding: 13px;
}

.postComment textarea.NormalTextBox {
  border: solid 1px #ddd;
  width: 97% !important;
  position: relative;
  margin-right: 7px;
  padding: 15px;
  /* box-shadow: 0 4px 10px 2px rgb(238,238,238); */
  border-radius: 3px;
  height: 175px !important;
}

.postComment input[type="button"] {
  margin-right: 12px;
  background-color: #12345a;
  font-size: 16px;
  height: 41px;
  width: 141px;
  text-align: center;
  color: #fff !important;
  webkit-transition: all 200ms ease-out 0s;
  -moz-transition: all 200ms ease-out 0s;
  -o-transition: all 200ms ease-out 0s;
  transition: all 200ms ease-out 0s;
  border: none !important;
}

#Notify {
  padding-top: 7px;
  padding-right: 12px;
  margin-bottom: 5px;
}

#Notify input {
  width: auto !important;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 4px 0 0 5px;
}

@media only screen and (max-width: 590px) {
  .postComment p:nth-child(1) {
    width: 97%;
  }

  .postComment p:nth-child(2) {
    width: 97%;
  }
}

/*---------------related.item.html----------------------*/
.relateditem {
}

.relateditem .relatednews {
  border: solid 1px #eee;
  -webkit-transition: all 200ms ease-out 0s;
  -moz-transition: all 200ms ease-out 0s;
  -o-transition: all 200ms ease-out 0s;
  transition: all 200ms ease-out 0s;
}

.relateditem .relatednews .title {
  padding: 10px;
  height: 68px;
  overflow: hidden;
  font-size: 13px;
}

.relateditem .relatednews .title a {
  color: #666 !important;
  -webkit-transition: all 200ms ease-out 0s;
  -moz-transition: all 200ms ease-out 0s;
  -o-transition: all 200ms ease-out 0s;
  transition: all 200ms ease-out 0s;
}

.relateditem .relatednews .title a {
  text-decoration: none;
}

.relateditem .relatednews em {
  padding: 0 0 0 5px;
}

.relateditem .icons {
  border-bottom: solid 1px #eee;
}

.relateditem .dg-imagebox .pic {
  border: 1px solid #eee;
}

.relateditem .dg-imagebox {
}

.relateditem .dg-imagebox .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #0b2e45;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 50%;
  margin: -18px -18px 0 0px;
  z-index: 3;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  /* Firefox 4 */
  -webkit-transition: all 200ms ease-in;
  /* Safari and Chrome */
  -o-transition: all 200ms ease-in;
  /* Opera */
  -ms-transition: all 200ms ease-in;
  /* IE9? */
}

.relateditem .dg-imagebox:hover .icon {
  opacity: 1;
  transform: scaleX(1);
  transition: all 200ms ease-in 500ms;
  -moz-transition: all 200ms ease-in 500ms;
  /* Firefox 4 */
  -webkit-transition: all 200ms ease-in 500ms;
  /* Safari and Chrome */
  -o-transition: all 200ms ease-in 500ms;
  /* Opera */
  -ms-transition: all 200ms ease-in 500ms;
  /* IE9? */
}

.relateditem .dg-imagebox .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  opacity: 1;
  z-index: 0;
  margin-top: -3px;
  opacity: 1;
  transition: all 300ms ease-in 500ms;
  -moz-transition: all 300ms ease-in 500ms;
  /* Firefox 4 */
  -webkit-transition: all 300ms ease-in 500ms;
  /* Safari and Chrome */
  -o-transition: all 300ms ease-in 500ms;
  /* Opera */
  -ms-transition: all 300ms ease-in 500ms;
  /* IE9? */
}

.relateditem .dg-imagebox:hover .bg {
  opacity: 0.7;
  top: 0;
  margin-top: 0;
  transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  /* Firefox 4 */
  -webkit-transition: all 300ms ease-in;
  /* Safari and Chrome */
  -o-transition: all 300ms ease-in;
  /* Opera */
  -ms-transition: all 300ms ease-in;
  /* IE9? */
}

.relateditem .dg-imagebox .pic {
  position: relative;
}

.relateditem .dg-imagebox .pic > img {
  width: 100%;
}

.relateditem .dg-imagebox .pic:after,
.relateditem .dg-imagebox .pic:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  bottom: 20px;
  opacity: 0.5;
  z-index: 1;
  transition: all 300ms ease-in 200ms;
  -moz-transition: all 300ms ease-in 200ms;
  /* Firefox 4 */
  -webkit-transition: all 300ms ease-in 200ms;
  /* Safari and Chrome */
  -o-transition: all 300ms ease-in 200ms;
  /* Opera */
  -ms-transition: all 300ms ease-in 200ms;
  /* IE9? */
}

.relateditem .dg-imagebox .pic:after {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}

.relateditem .dg-imagebox .pic:before {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
}

.relateditem .dg-imagebox:hover .pic:after,
.relateditem .dg-imagebox:hover .pic:before {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: all 300ms ease-in 300ms;
  -moz-transition: all 300ms ease-in 300ms;
  /* Firefox 4 */
  -webkit-transition: all 300ms ease-in 300ms;
  /* Safari and Chrome */
  -o-transition: all 300ms ease-in 300ms;
  /* Opera */
  -ms-transition: all 300ms ease-in 300ms;
  /* IE9? */
}

/*---------------tag-item----------*/
.ArticleView .tag-item a {
  background: #929897;
  color: #fff;
  padding: 6px;
  font-size: 13px;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
  transition: background-color ease-in 200ms;
  -moz-transition: background-color ease-in 200ms;
  -webkit-transition: background-color ease-in 200ms;
  -o-transition: background-color ease-in 200ms;
  -ms-transition: background-color ease-in 200ms;
}

.ArticleView .tag-item a:hover {
  background: #777777;
}

/*--------------------lightbox------------------*/
.ArticleView .articleImages .ImagesItem {
  margin-right: 0;
  float: left;
}

.ArticleView .articleImages .ImagesItem li a img {
  padding: 2px;
  border-radius: 6px;
  max-height: 120px;
  object-fit: cover;
  margin-right: 12px;
}

.ArticleView .articleImages .ImagesItem li {
  float: right;
  list-style-type: none;
}

/*----------------social---------------------------*/
.SocialIcons {
  padding-bottom: 5px;
}

.SocialIcons a {
  text-decoration: none;
}

.SocialIcons .fa {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 20px;
  display: inline-block;
  background-color: #0153a5;
  color: #fff;
  transition: background-color ease-in 200ms;
  -moz-transition: background-color ease-in 200ms;
  -webkit-transition: background-color ease-in 200ms;
  -o-transition: background-color ease-in 200ms;
  -ms-transition: background-color ease-in 200ms;
  border-radius: 5px;
  margin-top: 5px;
}

.SocialIcons .fa-send {
  background-color: #00aced;
  font-size: 18px;
  position: relative;
  top: -1px;
}

.SocialIcons .fa-instagram {
  background: #ed548e;
  font-size: 21px;
  position: relative;
  top: 1px;
  right: 1px;
}

.SocialIcons .fa-facebook {
  background: #3b5998;
}

.SocialIcons .fa-linkedin {
  background: #0076b3;
}

.SocialIcons .fa-twitter {
  background-color: #32ccfe !important;
  font-size: 19px;
}

/*------------fileItem.html-------------*/
.fileItem .file-download {
  float: left;
}

.fileItem .file-download a {
  background: #d4ad68;
  padding: 5px 10px;
  border-radius: 4px;
  color: #fff;
}

.fileItem li {
  padding: 10px;
  list-style-type: none;
}

.fileItem li a {
  text-decoration: none;
}

.fileItem li:nth-child(2n + 1) {
  background: #d4ad6824;
}

.border {
  border: 1px solid #ddd;
  padding: 3px;
  background: #f6f6f6;
}

/*------------------paging-------------*/
.PagingTable {
  width: 100%;
  background: #fff;
  height: 40px;
  margin-bottom: 15px;
}

.PagingTable td span,
.PagingTable a {
  background: #fff;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  margin: 7px 2px;
  text-align: center;
  color: #888;
  padding: 0 7px;
  box-shadow: 1px 1px 1px 1px #eee;
  border-radius: 5px;
  font-weight: bold;
}

.PagingTable [align="right"] {
  position: relative;
  right: 14px;
}

.PagingTable {
  border: none !important;
}

.PagingTable [align="right"] {
  position: relative;
  right: 14px;
}

/** * jQuery lightBox plugin * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/) * and adapted to me for use like a plugin from jQuery. * @name jquery-lightbox-0.4.css * @author Leandro Vieira Pinho - http://leandrovieira.com * @version 0.4 * @date November 17,2007 * @category jQuery plugin * @copyright (c) 2007 Leandro Vieira Pinho (leandrovieira.com) * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin */
#jquery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 90;
  width: 100%;
  height: 500px;
}

#jquery-lightbox {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  text-align: center;
  line-height: 0;
}

#jquery-lightbox a img {
  border: none;
}

#lightbox-container-image-box {
  position: relative;
  background-color: #fff;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

#lightbox-container-image {
  padding: 10px;
}

#lightbox-loading {
  position: absolute;
  top: 40%;
  right: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

#lightbox-container-image-data-box {
  background-color: #fff;
  margin: 0 auto;
  overflow: auto;
  font-family: Verdana, Helvetica, sans-serif;
  font-size: 10px;
  font-size-adjust: none;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1.4em;
}

#lightbox-container-image-data {
  padding: 0 10px;
}

#lightbox-container-image-details {
  float: right;
  text-align: right;
  width: 70%;
}

#lightbox-container-image-details-caption {
  font-weight: bold;
}

#lightbox-container-image-details-currentNumber {
  clear: right;
  display: block;
}

#lightbox-container-image-details-currentNumber a,
#lightbox-container-image-details-currentNumber a:hover {
  border-bottom: medium none;
  color: #151410;
  text-decoration: underline;
}

#lightbox-container-image-details-nav {
  clear: right;
  display: block;
  padding: 0 0 10px;
}

#lightbox-container-image-details-nav a,
#lightbox-container-image-details-nav a:hover {
  border-bottom: medium none;
  color: #151410;
  text-decoration: underline;
}

#lightbox-container-image-details-nav-btnPrev {
  margin: 0 0 0 8px;
}

#lightbox-image-details-close-btnClose {
  float: left;
}

#lightbox-image-details-close a,
#lightbox-image-details-close a:hover {
  border-bottom: medium none;
  color: #151410;
  text-decoration: underline;
}

/*---------print.item--------------------*/
.articlePrint {
  direction: rtl;
  margin: 0 auto;
  width: 650px;
  text-align: right;
}

.articlePrint .printhead {
  font: 12px/150%;
  margin: 0;
  text-align: right;
}

.articlePrint .printhead .printlogo {
  float: right;
  text-align: right;
  width: 200px;
  padding: 10px 0;
}

.articlePrint .printhead .headinfo {
  line-height: 180%;
  float: left;
  font-size: 12px;
  padding: 10px 0;
  text-align: left;
  width: 400px;
}

.articlePrint .printhead .headinfo .printcat {
  padding: 5px 0 0;
}

.articlePrint .printhead .headinfo .printid {
  padding: 5px 0 0;
}

.articlePrint .printhead .headinfo .printdt {
  direction: ltr;
  font-size: 12px;
  padding: 5px 0 0;
  text-align: left;
}

.articlePrint .printtextpane {
  border: 2px dotted #cccccc;
  clear: both;
  padding: 20px 30px 40px;
}

.articlePrint .printtextpane .nwstxtrotitr {
  color: #000066;
  font: 13px;
  margin: 0;
  text-align: right;
}

.articlePrint .printtextpane .nwstxtinfotitle {
  color: #000066;
  font-size: 40px;
  padding: 10px 0;
}

.articlePrint .printtextpane .nwstxtlead {
  color: #000000;
  margin: 3px 0;
  line-height: 1.6em !important;
}

.articlePrint .printtextpane .nwstxttext {
  clear: both;
  font-size: 12px;
  padding: 3px 0 0;
  text-align: justify;
  line-height: 2em !important;
}

.articlePrint .printcopyright {
  background: none repeat scroll 0 0 #dddddd;
  direction: rtl;
  font: normal 11px Verdana;
  padding: 2px 0;
  text-align: center;
}

/*-------search-------------*/
#articleSearchFormSmall {
  width: 83%;
  height: 35px;
  margin: 10px 0 15px 0;
  text-align: right;
  position: relative;
}

#articleSearchFormSmall input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  margin: 0 0 0 0 !important;
  cursor: pointer;
  text-indent: -9999px;
  border: 0;
  border: solid 1px #0053a5;
  background: #fff url("Images/search-tool.png") no-repeat center center/ 25px;
  background-color: #0053a5;
}

#articleSearchFormSmall input[type="text"] {
  width: 95%;
  height: 43px;
  line-height: 40px;
  color: #004c75;
  margin: 0 0 0 0;
  padding: 0 5px 0 0;
  background: #fff;
  border: 0;
  border: solid 1px #eee;
  border-left: none;
  background: #fbfbfb;
}

/*--------postRating-------*/
.postRating {
  padding: 10px;
}

.postRating label {
  margin: 0 2px 0 20px;
}

/*--------video----------*/
.box_modal-container video {
  width: 100% !important;
  text-align: center;
  margin: 30px auto;
  filter: brightness(0.7);
}

/*---------------News Articles Archives-------------*/
.listItem li {
  margin: 0;
  position: relative;
  list-style: none;
  padding: 5px 11px;
  font-size: 14px;
  webkit-transition: all 200ms ease-out 0s;
  -moz-transition: all 200ms ease-out 0s;
  -o-transition: all 200ms ease-out 0s;
  transition: all 200ms ease-out 0s;
}

.listItem li:hover {
  margin: 0 3px 0 0;
  webkit-transition: all 200ms ease-out 0s;
  -moz-transition: all 200ms ease-out 0s;
  -o-transition: all 200ms ease-out 0s;
  transition: all 200ms ease-out 0s;
}

.listItem li a {
  color: #333;
}

.listItem li a:hover {
  color: #2c5cda;
  text-decoration: none;
}

/*---------------*/
@media handheld, only screen and (max-width: 414px) {
  .col-xs-2 {
    float: none;
  }
}

/*///////////////*/
/*latest articles*/
.pr-0 {
  padding-right: 0;
}

.pl-0 {
  padding-left: 0;
}

.pt-5 {
  padding-top: 5px;
}

.mb-20 {
  margin-bottom: 20px;
}

.green {
  color: forestgreen;
}

.blue {
  color: darkblue;
}

.light-blue {
  color: #58a3bb;
}

.listingItem {
}

.listingItem .newscontainer {
  width: auto;
  border: solid 1px #eee;
  padding: 15px;
  background: #fff;
}

.rtl .listingItem .image {
  float: right;
  padding: 3px;
  margin: 5px 0 3px 8px;
  border: solid 1px #eee;
  overflow: hidden;
}

.listingItem .image {
  float: right;
  padding: 3px;
  margin: 5px 8px 3px 0;
  border: solid 1px #eee;
  overflow: hidden;
}

.listingItem .image img {
  transition: all 0.5s ease;
  background: #0053a5;
  opacity: 0.9;
  width: 100%;
}

.listingItem .image img:hover {
  transform: scale(1.1);
  transition: all ease 0.5s;
  background: #0053a5;
  opacity: 0.9;
}

.listingItem .spacer {
  height: 10px;
}

.listingItem .date {
  font-size: 13px;
  color: #888;
  padding: 5px;
  border: solid 1px #f5f5f5;
  height: 37px;
  float: left;
  width: 100%;
  background: #fbfbfb;
}

.listingItem .subtitle {
  font-size: 12px;
  color: #666;
}

.listingItem .title em {
  display: inline-block;
}

.listingItem .title h2 {
  display: inline-block;
  font-size: 15px;
  color: #0053a5;
  line-height: 24px;
  margin-bottom: 8px;
}

.listingItem .title {
  margin-top: 3px;
}

.listingItem .title a,
.listingItem .title a:hover,
.listingItem .title a:active {
  font-size: 15px;
  text-decoration: none;
  color: #0053a5;
  line-height: 1.4em;
  font-weight: bold;
  letter-spacing: 0.3px;
}

.listingItem .summary {
  font-size: 14px;
  color: #4b4b4b;
  margin-top: 2px;
  line-height: 23px;
  min-height: 60px;
  text-align: justify;
}

.rtl .listingItem .datepane {
  float: right;
}

.listingItem .datepane {
  float: left;
}

.listingItem .datepane span {
  margin-left: 5px;
}

.rtl .listingItem .iconpane {
  float: left;
}

.listingItem .iconpane {
  float: right;
}

.listingItem .iconpane a {
  background: #c8c8c8;
  color: #fff;
  font-size: 17px;
  width: 25px;
  height: 25px;
  display: inline-block;
  text-align: center;
}

.listingItem .iconpane a:hover {
  background: #999;
  text-decoration: none;
}

@media only screen and (max-width: 480px) {
  .listingItem .title {
    clear: both;
  }
}

@media only screen and (max-width: 320px) {
  .listingItem .datepane {
    font-size: 11px;
  }
}

.PagingTable {
  width: 100%;
  background: #fff;
  height: 40px;
  margin-bottom: 15px;
}

.PagingTable td span,
.PagingTable a {
  background: #fff;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  margin: 7px 2px;
  text-align: center;
  color: #888;
  padding: 0 7px;
  box-shadow: 1px 1px 1px 1px #eee;
  border-radius: 5px;
  font-weight: bold;
}

.PagingTable td {
  padding: 0px 10px;
}

/*search*/
#articleSearchFormSmall {
  width: 83%;
  height: 35px;
  margin: 10px 0 15px 0;
  text-align: right;
  position: relative;
}

#articleSearchFormSmall input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  margin: 0px 0 0 0 !important;
  cursor: pointer;
  text-indent: -9999px;
  border: 0px;
  border: solid 1px #0053a5;
  background: #fff
    url("/DesktopModules/DnnForge - NewsArticles/Templates/Standard/Images/search-tool.png")
    no-repeat center center/ 25px;
  background-color: #0053a5;
}

.rtl #articleSearchFormSmall input[type="text"] {
  width: 95%;
  height: 43px;
  line-height: 40px;
  color: #004c75;
  margin: 0px 0 0 0;
  padding: 0 5px 0 0;
  background: #fff;
  border: 0px;
  border: solid 1px #eee;
  border-left: none;
  background: #fbfbfb;
}

#articleSearchFormSmall input[type="text"] {
  width: 95%;
  height: 43px;
  line-height: 40px;
  color: #004c75;
  margin: 0px 0 0 0;
  padding: 0 0 0 5px;
  background: #fff;
  border: 0px;
  border: solid 1px #eee;
  border-right: none;
  background: #fbfbfb;
}

/*archive*/
.blue {
  color: darkblue;
}

.listItem li {
  margin: 0;
  position: relative;
  list-style: none;
  padding: 5px 11px;
  font-size: 14px;
  webkit-transition: all 200ms ease-out 0s;
  -moz-transition: all 200ms ease-out 0s;
  -o-transition: all 200ms ease-out 0s;
  transition: all 200ms ease-out 0s;
}

.rtl .listItem li:hover {
  margin: 0 3px 0 0;
  webkit-transition: all 200ms ease-out 0s;
  -moz-transition: all 200ms ease-out 0s;
  -o-transition: all 200ms ease-out 0s;
  transition: all 200ms ease-out 0s;
}

.listItem li:hover {
  margin: 0 0 0 3px;
  webkit-transition: all 200ms ease-out 0s;
  -moz-transition: all 200ms ease-out 0s;
  -o-transition: all 200ms ease-out 0s;
  transition: all 200ms ease-out 0s;
}

.listItem li a {
  color: #333;
}

.listItem li a:hover {
  color: #2c5cda;
  text-decoration: none;
}

/*comment*/
.mb-20 {
  margin-bottom: 26px !important;
}

.ArticleView .commentStyle {
  border-bottom: solid 1px #f5f5f5;
  padding-bottom: 20px;
}

.ArticleView .commentStyle .fa {
  font-size: 67px;
  color: #bbb;
}

.ArticleView .commentStyle .datecomment {
  font-size: 11px;
  color: #999;
}

.ArticleView .commentStyle p {
  margin: 0;
}

a.btn-companies {
  font-size: 13px;
  color: #999;
  font-weight: 600;
  border: 1px solid #cbcbcb;
  padding: 10px 30px;
  display: none;
}

b,
strong {
  color: #252525;
  font-size: 16px;
}

.imglist.dg-imagebox:hover .news-cont {
  background: rgb(212 173 104);
  transition: 0.5s;
}

.imglist.dg-imagebox:hover h2 {
  color: #fff;
  transition: 0.5s;
}

.imglist.dg-imagebox:hover p {
  color: #b5b5b5;
  transition: 0.5s;
}

.imglist.dg-imagebox:hover .companies-image-div img {
  transition: 0.5s;
}
.companies-image-div {
  margin-bottom: 5px;
  border-radius: 6px;
}
.companies-image-div img {
  border-radius: 6px;
  height: 310px;
  width: 100%;
  object-fit: cover;
}
.Companies-header {
  width: 100%;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 87vh;
  position: absolute;
  z-index: 2;
}
.Companies-header::after {
  /* content: ""; */
  background-color: rgba(255, 255, 255, 0.14);
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0px);
  left: 0;
  top: 105px;
  -webkit-mask-image: url(/Portals/_default/Skins/raahbar-en/raahbar/assets/img/pgpic-mask-inner.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
  -webkit-mask-position: left;
  opacity: 0;
}
.Companies-header::after {
  -webkit-animation: heroblur-animate 2.5s linear 1 forwards;
  animation: heroblur-animate 2.5s linear 1 forwards;
}
@keyframes heroblur-animate {
  100% {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
  }
}

.Companies-header img {
  padding: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.Companies-title {
  font-size: 40px;
  line-height: 56px;
  font-weight: 800;
  color: #fff;
}
p.news-main-p-archive {
  font-size: 16px;
  line-height: 30px;
  font-weight: 800;
  color: #fff;
}
.Companies-header_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle, rgb(0 0 0 / 34%) 1px, #00000085 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}
.title-desc_container {
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: start;
  bottom: 18px;
  right: 7%;
  margin: 0 auto;
  z-index: 4;
  padding-right: 10%;
  width: 55%;
}
.listingItem {
  padding-top: 45px;
}

tr:nth-child(even) {
  background-color: #d4ad682e;
}

td {
  border-right: 1px solid #ccc;
  line-height: 31px;
  color: #808080;
  font-size: 15px;
  font-weight: 500;
}

.postRating p {
  line-height: 31px;
  color: #595959;
  font-size: 15px;
  font-weight: 500;
}

iframe {
  width: 100%;
}

.postRating img {
  width: 25px;
  height: auto;
  margin-left: 10px;
}

.title-desc_container p {
  color: #ffffff;
  text-align: right;
}
.companies-logo img {
  position: absolute;
  width: 147px !important;
  height: auto !important;
  bottom: 5%;
  z-index: 3;
  left: 17%;
}
.box_modal-container {
  position: relative;
  width: 100%;
}
.box_modal-container::after {
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  background-image: linear-gradient(to top, #de912d 0%, #ffac40 100%);
  background-image: url(/Portals/_default/Skins/glend/resource/theme-assests/img/circle-play.png);
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.7);
  color: #ffffff00;
  content: "\f0da";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 20px;
  font-weight: 600;
  height: 48px;
  left: 50%;
  line-height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  position: absolute;
  text-align: center;
  top: 50%;
  filter: contrast(1.4);
  transition: all 0.3s ease-in-out;
  width: 48px;
}
.video-box {
  display: flex;
  justify-content: center;
}
div#video-container {
  width: 700px;
}
.section.counter-main {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 105px;
}

.counter-container {
  width: 100%;
  text-align: center;
  padding-block: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.postRating.counter {
  font-size: 35px;
  font-weight: 800;
  color: #485cc7;
  padding: 0;
}

.count-text {
  font-size: 22px;
  color: #4f4f4f;
  font-weight: 600;
}
.title-box {
  position: relative;
  width: 100%;
}
.title-wrapper {
  width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  direction: rtl;
}
.title-box .title {
  color: #485cc7;
  display: inline-block;
  white-space: nowrap;
  font-size: 32px !important;
}
.back-title {
  top: -247%;
  right: 0%;
  left: 0;
  margin: 0 auto;
  position: absolute;
  color: #616364;
  font-size: 94px;
  opacity: 0.1;
  font-weight: 900;
  z-index: 0;
  width: fit-content;
}
.headding-main {
  text-align: center;
  margin-bottom: 95px;
}

.info {
  display: flex;
  padding: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--WhiteColor);
  background: url(/Portals/_default/Skins/glend/resource/theme-assests/img/box-bg.jpg)
    no-repeat;
  background-size: cover;
}
.info-title {
  padding-bottom: 12px;
  font-size: 30px;
  color: #e6883c;
  font-weight: 800;
}
.info-text {
  font-size: 19px;
  color: #485cc7;
  font-weight: 700;
}
.news-single-content-p {
  margin-bottom: 60px;
}
.articleImages p {
  font-size: 16px;
  line-height: 40px;
  text-align: justify;
}
.articleImages {
  margin-bottom: 13px;
}

.counter-container img {
  width: 100px;
  margin-bottom: 25px;
}
.certificates-swiper {
  width: 100%;
  position: relative;
}

.certificates-swiper .swiper-slide,
.certificates-swiper a,
.certificates-swiper img {
  display: block;
}

.certificates-swiper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* فقط arrow، بدون pagination */
.certificates-swiper .swiper-button-next,
.certificates-swiper .swiper-button-prev {
  color: #000;
  background-color: #e6883c;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.certificates-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificates-swiper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.certificates-swiper .swiper-button-next::after,
.certificates-swiper .swiper-button-prev::after {
  display: none !important;
  content: none !important;
}
.certificates-swiper .swiper-button-prev svg {
  transform: rotate(360deg) !important;
}
.section.certificates-section {
  margin-bottom: 90px;
}
.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  color: #ffffff;
  width: 11px;
}
.video-counter {
  padding-top: 50px;
  padding-bottom: 130px;
}
/* پیش‌فرض: فقط ISO */
.certificate-slide .swiper-certifictae-img {
  display: none;
}

.certificate-slide .swiper-iso-img {
  display: block;
  opacity: 0.6;
}

/* فقط اسلاید active */
.certificate-slide.swiper-slide-active .swiper-iso-img {
  display: none;
}

.certificate-slide.swiper-slide-active .swiper-certifictae-img {
  display: block;
}

/* افکت شبیه تصویر */
.certificate-slide {
  text-align: center;
  transition: transform 0.4s ease;
}
svg.swiper-navigation-icon {
  display: none;
}
.swiper-wrapper {
  align-items: center;
}
.swiper-slide-active img {
  width: 250px;
}

.ContentPane{
    padding-top: 70px;
}
